home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / hypertxt / msdos / hydos10 / print < prev    next >
Text File  |  1991-04-23  |  2KB  |  45 lines

  1.                                    PRINT
  2.              Prints text (ascii) files in the background mode.
  3.  
  4. PRINT will place filenames in the queue for background printing
  5.  
  6. COMMAND TYPE: External                  VERSION: 2.0 and up
  7.  
  8. USE:  PRINT [/D: device] [/B:bufsize] [/U:busy] [/M:maxtick]
  9.       [/S:timeslice] [/Q:qsize][/C][/T][/P]  [[d:][path][filename]...]
  10.  
  11. FIRST USE ONLY:
  12. /D:device     specifies the device to PRINT to. Default is PRN; other
  13.               valid devices are LPTx (x=1,2,3) and COMx (x=1-4)
  14. /B:bufize     specifies the size of the buffer (in bytes). Default is 512,
  15.               range is 512-1634
  16. /U:busy       specifies the number of clock ticks that PRINT will wait
  17.               while the print device is busy or unavailable. Default is 1
  18. /M:maxtick    specifies the number of ticks that PRINT can have to print
  19.               to the print device.  Values from 1 to 255 will be accepted.
  20.               Default is 2
  21. /S:timeslice  specifies the interval of time used by the MSDOS scheduler
  22.               for the PRINT command.  Values from 1 to 255 will be
  23.               accepted. Default is 8.
  24. /Q:qsize      specifies the number of PRINT files that may be in the queue.
  25.               Values from 4 to 32 are acceptable. Default is 10
  26.  
  27. SUBSEQUENT USE
  28. /C            selects the cancel mode. Removes preceding filename and all
  29.               following filenames from the queue.
  30. /T            terminates the entire PRINT procedure. All files currently
  31.               being PRINTed will be cancelled.
  32. /P            sets the print mode. The preceding filename and any files
  33.               following /P will be added to the PRINT queue.
  34.  
  35. d: path filename... is a list of files to PRINT.  wildcards are accepted.
  36.               The maximum length of a path and filename is 64 characters,
  37.               hence it may be neccessary to change directories before
  38.               issuing the command.
  39.  
  40. EXAMPLE: PRINT *.DOC /C
  41. will cancel all files with an extension of DOC from the print queue.
  42.  
  43. EXAMPLE: PRINT TEST.DOC /C T.DOC /P
  44. cancels TEST.DOC and adds T.DOC to the print queue.
  45.